【例子介绍】c# mapx 属性表的连接 属性与地图互查 鹰眼 鼠标滚轮 地图基本操作
c# 基于mapx 基本操作放大、漫游、缩小滚轮放大缩小 单击图层中任意要素便显示相应属性信息 动态图层控制 属性表的连接 属性与地图互查 鹰眼
【相关图片】
【源码结构】
文件清单
└── C#&mapx
└── WindowsFormsApplication1
├── WindowsFormsApplication1
│ ├── bin
│ │ └── Debug
│ │ ├── AxInterop.MapXLib.dll
│ │ ├── Interop.MapXLib.dll
│ │ ├── WindowsFormsApplication1.exe
│ │ ├── WindowsFormsApplication1.pdb
│ │ ├── WindowsFormsApplication1.vshost.exe
│ │ └── WindowsFormsApplication1.vshost.exe.manifest
│ ├── ClassA.cs
│ ├── mainform.cs
│ ├── mainform.Designer.cs
│ ├── mainform.resx
│ ├── obj
│ │ └── Debug
│ │ ├── AxInterop.MapXLib.dll
│ │ ├── Interop.MapXLib.dll
│ │ ├── Refactor
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── WindowsFormsApplication1.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApplication1.csproj.GenerateResource.Cache
│ │ ├── WindowsFormsApplication1.csproj.ResolveComReference.cache
│ │ ├── WindowsFormsApplication1.exe
│ │ ├── WindowsFormsApplication1.mainform.resources
│ │ ├── WindowsFormsApplication1.Properties.Resources.resources
│ │ └── WindowsFormsApplication1.shuxing.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── boxSel.bmp
│ │ ├── pan.bmp
│ │ ├── zoomin.bmp
│ │ ├── zoomout.bmp
│ │ └── 放大.jpg
│ ├── WindowsFormsApplication1.csproj
│ ├── 属性表.cs
│ ├── 属性表.Designer.cs
│ └── 属性表.resx
├── WindowsFormsApplication1.sln
└── WindowsFormsApplication1.suo
11 directories, 37 files
评论